home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / DIGEST_B / VIEWS / CDISPLAY.H next >
Text File  |  1992-02-29  |  483b  |  26 lines

  1. /****
  2.  * CDisplayIndex.h
  3.  *
  4.  *    A text edit pane for a tiny editor.
  5.  *
  6.  ****/
  7.  
  8.  
  9. #define _H_CDisplayIndex
  10.  
  11. #include "CSelectLine.h"
  12. #include "Browser.h"
  13.  
  14. struct CDisplayIndex : CSelectLine {
  15.  
  16.     BrowserDir    itsDir;
  17.                                 /** Contruction/Destruction **/
  18.     void    IDisplayIndex(CView *anEnclosure, CBureaucrat *aSupervisor,
  19.                 short vLoc, short vHeight, BrowserDir theDir, long index_displayed);
  20.  
  21.     void    SetIndex(long index_displayed);
  22.     void    Dispose(void);
  23.  
  24.     void    SelectionChanged(void);
  25. };
  26.